home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Kit PC World De Ampliacion De Windows 95
/
Kit PC World de ampliacion de Windows 95.iso
/
internet
/
sweeper
/
samples
/
olecon~1
/
controls
/
button
/
button.rc
< prev
next >
Wrap
Text File
|
1995-11-25
|
4KB
|
130 lines
/////////////////////////////////////////////////////////////////////////////
// Button.Rc
/////////////////////////////////////////////////////////////////////////////
// Copyright 1995 Microsoft Corporation. All Rights Reserved.
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
/////////////////////////////////////////////////////////////////////////////
//
// contains the resources for our DLL, including the TypeLib, error strings,
// and versioning information.
//
#include "Resource.H"
#include "Windows.H"
#define IDC_STATIC -1
/////////////////////////////////////////////////////////////////////////////
//
// Bitmap and Icons that are not localized
//
RESID_TOOLBOX_BITMAP BITMAP DISCARDABLE "Button.Bmp"
/////////////////////////////////////////////////////////////////////////////
//
// Our Non-Localized Type Library
//
1 TYPELIB Button.TLB
/////////////////////////////////////////////////////////////////////////////
//
// This table includes the languages supported by this server.
// Each language maps to a satalite DLL that contains error messages.
//
// - if you do not want to use satellite Localization, then
// remove this table
// - TODO: add any new languages you wish to support to this table
//
INTLSZ_LANGMAP RCDATA DISCARDABLE
BEGIN
// Primary Language ID SubLanguage ID Satalite DLL
// ------------------- -------------- ------------
LANG_FRENCH, SUBLANG_FRENCH, "ButtonFR.DLL","\0",
LANG_JAPANESE, SUBLANG_DEFAULT, "ButtonJP.DLL","\0",
END
/////////////////////////////////////////////////////////////////////////////
// EVERYTHING FROM HERE UNTIL THE VERSION RESOURCES IS LOCALIZABLE //
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
//
// String tables with Exception Information, etc.
//
STRINGTABLE DISCARDABLE
BEGIN
IDS_PROPERTIES, "Button Properties"
IDS_BUTTON_GENERALPAGETITLE, "General Properties"
IDS_BUTTON_GENERALDOCSTRING, "Properties for the Button Control"
END
/////////////////////////////////////////////////////////////////////////////
//
// Property Page Dialog
//
IDD_PROPPAGE_BUTTONGENERAL DIALOG DISCARDABLE 0, 0, 184, 93
STYLE WS_CHILD | 0x4
FONT 8, "MS Sans Serif"
BEGIN
EDITTEXT IDC_CAPTION,8,23,120,14,ES_AUTOHSCROLL
LTEXT "&Caption:",IDC_STATIC,8,11,58,10
END
/////////////////////////////////////////////////////////////////////////////
// Version Information
/////////////////////////////////////////////////////////////////////////////
//
#include "dwinvers.h"
#include <winver.h>
VS_VERSION_INFO VERSIONINFO
FILEVERSION 04,00,vusVersNumf2,vusVersNuml2 //<----- This is used by setup!
PRODUCTVERSION 04,00,vusVersNumf2,vusVersNuml2
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
#ifdef DEBUG
FILEFLAGS VS_FF_DEBUG
#else
FILEFLAGS 0L
#endif
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE 0
{
BLOCK "StringFileInfo"
{
BLOCK "040904B0" // Language and character set identifiers.
{
VALUE "CompanyName", "My Company Name\0"
VALUE "FileDescription", "Button"
VALUE "FileVersion", vszVersNumAll
VALUE "InternalName", "Button.Ocx\0"
VALUE "LegalCopyright", vszCopyright
VALUE "LegalTrademarks", "Put Legal TradeMarks here ...\0"
VALUE "ProductName", "Button Object Library\0"
VALUE "ProductVersion", vszVersNumAll
VALUE "Comments", vszMakeDate
VALUE "OLESelfRegister", "\0"
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation" ,0x409, 0x4b0
}
}